home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-07-14 | 554 b | 18 lines | [TEXT/MPS ] |
- # This simple MPW/Toolserver script will go through the two main
- # Source code directories, and set each file's mod date/time to
- # today's date, and a fixed time (cheap man's version system.)
- # Hint: This would be a cool AppleScript... how do you change
- # a file's mod date/time? :-(
- # Eduard Schwan
- #
- cd Projects:Projects:POV:POVRAY3:POV3.Source:MacSource:
- set daDate "`date -s -d` 3:00"
- for f in ≈.c ≈.h ≈.pch ≈.rsrc
- setfile -m "{daDate}" {f}
- end
- cd Projects:Projects:POV:POVRAY3:POV3.Source:Source:
- for f in ≈.c ≈.h
- setfile -m "{daDate}" {f}
- end
-
-